home *** CD-ROM | disk | FTP | other *** search
/ Beginning Mac Programming / Beginning Mac Programming.bin / pc / Open Me for REALbasic 3 / REALbasic 3.2 / Goodies / 3rd Party Demos / 3rd Party Plugins / Misc / PEVocoder 1.0 (PPC) / PEVocodePlugin Source Code / config.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-11-22  |  927 b   |  34 lines

  1. /******************************************************************************
  2.  * $Id: config.h,v 1.2 1998/09/13 00:21:18 emanuel Exp $
  3.  * Copyright (C) 1998 Emanuel Borsboom <emanuel@zerius.com>
  4.  * Permission is granted to make any use of this code subject to the condition
  5.  * that all copies contain this notice and an indication of what has been
  6.  * changed.
  7.  *****************************************************************************/
  8.  
  9. #ifndef CONFIG_H_INCLUDED
  10. #define CONFIG_H_INCLUDED
  11.  
  12. typedef int BOOL;
  13. //#define FALSE 0  //-- EJT change Nov. 2000
  14. //#define TRUE 1  //-- EJT change Nov. 2000
  15.  
  16. typedef unsigned long U32;
  17. typedef signed long S32;
  18. typedef unsigned short U16;
  19. typedef signed short S16;
  20. typedef unsigned char U8;
  21. typedef signed char S8;
  22.  
  23. typedef S32 INT;
  24. typedef S16 SHORT;
  25. typedef S8  BYTE;
  26. typedef U32 UINT;
  27. typedef U16 USHORT;
  28. typedef U8  UBYTE;
  29.  
  30. typedef double REAL;
  31.  
  32. #endif /* CONFIG_H_INCLUDED */
  33.  
  34.